home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / os2 / chapm11.zip / INSTALL.CMD < prev    next >
OS/2 REXX Batch file  |  1994-05-11  |  666b  |  30 lines

  1. /* ChapMan installation program */
  2. say "Welcome to the ChapMan installation program!"
  3. say
  4. say "Please enter the path of your Smalltalk system."
  5. say "Press <ENTER> for the current directory"
  6. pull smallpath
  7.  
  8. if smallpath \= '' then do
  9.     Say
  10.     Say "Copying the HLP files to" smallpath
  11.     '@copy *.hlp' smallpath
  12.     if rc \=0 Then call Error("Error copying HLP files")
  13. End
  14.  
  15. Say
  16. Call hlp2inf chapman
  17.  
  18. Say
  19. Say "Please any key to view the chapman documentation"
  20. Say "and see how to proceed with the installation."
  21. Pull wait
  22. '@start view chapman introduction'
  23. Exit
  24.  
  25. Error:
  26. parse arg errmsg
  27. Say
  28. Say errmsg
  29. Say "The installation has been aborted."
  30. Exit